* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #464444;
  color: #e5e5e5;
}

html {
  scroll-behavior: smooth;
}
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: rgb(235, 236, 241);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.nav-bar {
  /* background-color: rgb(44, 45, 46); */
  background-color: rgb(199, 201, 206);
  height: 4rem;
  position: fixed;
  width: 100%;
  z-index: 100;
  filter: opacity(0.7);
  border-radius: 0 0 1rem 1rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 0.5rem;
  color: rgb(33, 33, 34);
}
.container {
  margin: auto;
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  width: 70%;
}

footer p {
  font-size: 16px;
  font-family: Helvetica;
  font-weight: 300;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #464444;
}

.poke-card {
  height: 250px;
  width: 200px;
  border-radius: 1rem;
  margin: auto;
  background-color: #f5f1f1;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  transition: 0.5s ease-in-out;
  border: 0.1px solid #464444;
}

.poke-card:hover {
  filter: brightness(0.9);
  transform: scaleY(1.002);
}

img {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  margin-top: 10%;
  background-color: #eee9e9;
  margin: auto;
}

.poke-desc {
  width: 100%;
  height: 30%;
  /* background-color: #464444; */
  display: flex;
  flex-direction: column;
}

.poke-id {
  color: #4e4949;
  font-size: 14px;
  /* padding-top: 0.5rem; */
  /* padding-left: 1.5rem; */
  font-weight: 600;
  /* text-align: center; */
  filter: brightness(0.85);
}

.poke-name {
}

.poke-type {
  display: flex;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
}

.poke-name {
  color: #4e4949;
  font-size: 18px;
  padding-top: 0.5rem;
  padding-left: 1.5rem;
  font-weight: 600;
}

.type-1,
.type-2 {
  background-color: #e5e5e5;
  border: 0.2px solid #464444;
  border-radius: 4px;
  filter: opacity(0.7);
  padding: 0 0.5rem 0 0.5rem;
}
